【例子介绍】C#中英文语音朗读,文字转音频文件
支持TTS语音引擎,可以自行下载语音类库,实现中英文各类声音朗读,C#获取系统音量与设置系统音量的方法,C#朗读中文,语音文件生成
【相关图片】
【源码结构】
文件清单
└── WriteToSpeech
├── PC_VolumeControl
│ ├── bin
│ │ ├── Debug
│ │ │ ├── PC_VolumeControl.dll
│ │ │ └── PC_VolumeControl.pdb
│ │ └── Release
│ │ ├── PC_VolumeControl.dll
│ │ └── PC_VolumeControl.pdb
│ ├── obj
│ │ ├── Debug
│ │ │ ├── PC_VolumeControl.csproj.FileListAbsolute.txt
│ │ │ ├── PC_VolumeControl.dll
│ │ │ ├── PC_VolumeControl.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ ├── PC_VolumeControl.csproj.FileListAbsolute.txt
│ │ ├── PC_VolumeControl.csproj.FileList.txt
│ │ └── Release
│ │ ├── PC_VolumeControl.csproj.FileListAbsolute.txt
│ │ ├── PC_VolumeControl.dll
│ │ ├── PC_VolumeControl.pdb
│ │ ├── Refactor
│ │ └── TempPE
│ ├── PC_VolumeControl.csproj
│ ├── PCWin32.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── VolumeConstants.cs
│ ├── VolumeControl.cs
│ └── VolumeStructs.cs
├── UpgradeLog.XML
├── WriteToSpeech
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DotNetSpeech.dll
│ │ │ ├── PC_VolumeControl.dll
│ │ │ ├── PC_VolumeControl.pdb
│ │ │ ├── WriteToSpeech.vshost.exe.manifest
│ │ │ ├── 云达文字朗读.exe
│ │ │ ├── 云达文字朗读.pdb
│ │ │ └── 云达文字朗读.vshost.exe
│ │ └── Release
│ │ ├── 20130724112616854_48.ico
│ │ ├── DotNetSpeech.dll
│ │ ├── PC_VolumeControl.dll
│ │ ├── PC_VolumeControl.pdb
│ │ ├── TTS_51_chs.msi
│ │ ├── 云达文字朗读.exe
│ │ ├── 云达文字朗读.pdb
│ │ ├── 云达文字朗读.vshost.exe
│ │ ├── 云达文字朗读.vshost.exe.manifest
│ │ └── 卸载.ICO
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── WriteToSpeech.csproj.FileListAbsolute.txt
│ │ │ ├── WriteToSpeech.csproj.GenerateResource.Cache
│ │ │ ├── WriteToSpeech.Form1.resources
│ │ │ ├── WriteToSpeech.Properties.Resources.resources
│ │ │ ├── 云达文字朗读.exe
│ │ │ └── 云达文字朗读.pdb
│ │ └── Release
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── WriteToSpeech.csproj.FileListAbsolute.txt
│ │ ├── WriteToSpeech.csproj.GenerateResource.Cache
│ │ ├── WriteToSpeech.Form1.resources
│ │ ├── WriteToSpeech.Properties.Resources.resources
│ │ ├── 云达文字朗读.exe
│ │ └── 云达文字朗读.pdb
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ └── 20130724112616854_48.ico
│ ├── SystemVolume.cs
│ └── WriteToSpeech.csproj
├── WriteToSpeech.sln
├── WriteToSpeechSteup
│ ├── Debug
│ ├── Release
│ └── WriteToSpeechSteup.vdproj
└── WriteToSpeech.suo
27 directories, 67 files
评论